home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Extra 1996 #3 / AmigaPlus_CD-ROM-EXTRA_Nr.3.bin / aminet-spiele / role on / tacl / junglesource / jungle.adv < prev    next >
Text File  |  1989-12-24  |  1KB  |  53 lines

  1. ADVENTURE Short T.A.C.L. Adventure -- The Jungle
  2.  
  3. PASSWORD Jungle
  4.  
  5. VAR
  6.  Temp             * This will be used generically
  7.  InCaverns        * Is the player in the cave right now? 1=Yes
  8.  CanSee           * Can the player see? 0=No, not used til in caves
  9.  DoorState        * Sliding door controller in Small_Room
  10.  Height           * How high has the player climbed?
  11.  WallState        * How far have the walls closed?
  12.  SlabPushed       * Has sacred-chamber wall been moved?
  13.  ReadCount        * Which wall is player reading?
  14.  CrossedWater     * Has player swum across the pit yet?
  15.  InConnTunn       * Was player in the connecting tunnel last?
  16.  InPitPass     1  * Was player in the pit passage last?
  17.  PitFull          * Is the pit full of water?
  18.  FirstRound    1  * Is Plyaer reading walls for the first time?
  19. ENDVAR
  20.  
  21. IMAGE
  22.  JungleGfx     Jungle         * the latter is the gfx file's password
  23.  CaveGfx1      Cave1
  24.  CaveGfx2      Cave2
  25.  ObjGfx        Objs
  26. ENDIMAGE
  27.  
  28. ROOM
  29.  JungleRooms
  30.  CaveRooms1
  31.  CaveRooms2
  32. ENDROOM
  33.  
  34. OBJECT
  35.  JungleObjects
  36.  CaveObjects
  37. ENDOBJECT
  38.  
  39. SUB
  40.  JungleSubs
  41. ENDSUB
  42.  
  43. VOCAB
  44.  JungleVocab
  45. ENDVOCAB
  46.  
  47. INITROOM Float_Plane
  48.  
  49. ENDADVENTURE
  50.  
  51.  
  52.  
  53.